home *** CD-ROM | disk | FTP | other *** search
/ Kompuutteri K-CD 2002 #1 / K-CD_2002-01.iso / Delphi / INSTALL / program files / Borland / Delphi6 / Demos / Football / about.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  2001-05-22  |  385 b   |  28 lines

  1. unit about;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   StdCtrls;
  8.  
  9. type
  10.   TAboutForm = class(TForm)
  11.     Label1: TLabel;
  12.     Memo1: TMemo;
  13.     Button1: TButton;
  14.   private
  15.     { Private declarations }
  16.   public
  17.     { Public declarations }
  18.   end;
  19.  
  20. var
  21.   AboutForm: TAboutForm;
  22.  
  23. implementation
  24.  
  25. {$R *.dfm}
  26.  
  27. end.
  28.